home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / g_quake / abomb6.zip / WEAPONS.DIF < prev    next >
Text File  |  1996-08-12  |  620b  |  22 lines

  1. --- /usr/Quake/edit/qcc/v101qc/weapons.qc    Thu Jul 25 09:51:24 1996
  2. +++ weapons.qc    Mon Aug 12 19:48:39 1996
  3. @@ -5,7 +5,7 @@
  4.  void(entity bomb, entity attacker, float rad, entity ignore) T_RadiusDamage;
  5.  void(vector org, vector vel, float damage) SpawnBlood;
  6.  void() SuperDamageSound;
  7. -
  8. +void() Spawn_ABomb;         //Added by me
  9.  
  10.  // called by worldspawn
  11.  void() W_Precache =
  12. @@ -1169,7 +1169,8 @@
  13.          CycleWeaponCommand ();
  14.      if (self.impulse == 11)
  15.          ServerflagsCommand ();
  16. -
  17. +    if (self.impulse == 101)    //Bind key 'b' to impulse 101
  18. +        Spawn_ABomb ();     //For abomb command
  19.      if (self.impulse == 255)
  20.          QuadCheat ();
  21.          
  22.